projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
674537e
)
* alloc.c (make_event_array): Use SSET for storing into a string.
author
Ken Raeburn
<raeburn@raeburn.org>
Tue, 16 Jul 2002 15:48:47 +0000
(15:48 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Tue, 16 Jul 2002 15:48:47 +0000
(15:48 +0000)
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index 80b63345459dd7e7bf82e93cd4ed842acc9a52ce..470cb9277bb25666de1548598219c9edf67e7cf9 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-2701,10
+2701,10
@@
make_event_array (nargs, args)
result = Fmake_string (make_number (nargs), make_number (0));
for (i = 0; i < nargs; i++)
{
- S
REF (result, i) = XINT (args[i]
);
+ S
SET (result, i, XINT (args[i])
);
/* Move the meta bit to the right place for a string char. */
if (XINT (args[i]) & CHAR_META)
- S
REF (result, i) |= 0x80
;
+ S
SET (result, i, SREF (result, i) | 0x80)
;
}
return result;